001    package jgb.examples;
002    
003    import jgb.examples.models.SSModel;
004    
005    import javax.swing.*;
006    
007    public interface SwingSetWindow {
008        public SSModel getModel();
009    
010        public JComboBox getCombobox();
011    
012        public JTextField getCommand();
013    }